36982eb5fba35e348014fc74ec60063bbe64d0c2,vinja/java/com/github/vinja/debug/StepManager.java,StepManager,stepOut,#,59
Before Change
ThreadReference threadRef = threadStack.getCurThreadRef();
StackFrame stackFrame = threadRef.frame(threadStack.getCurFrame());
Location loc = stackFrame.location();
String abPath = ctx.findSourceFile(loc.sourcePath());
JavaSourceSearcher searcher = JavaSourceSearcher.createSearcher(abPath,ctx);
int currentLine = loc.lineNumber();
int outLine = searcher.searchLoopOutLine(currentLine);
After Change
StackFrame stackFrame = threadRef.frame(threadStack.getCurFrame());
Location loc = stackFrame.location();
String locClassName = loc.sourcePath().replace("/",".").replace(".java","");
String abPath = ctx.findSourceOrBinPath(locClassName);
JavaSourceSearcher searcher = JavaSourceSearcher.createSearcher(abPath,ctx);
int currentLine = loc.lineNumber();